home *** CD-ROM | disk | FTP | other *** search
- onClipEvent(enterFrame){
- if(_root.level1._x > -1060)
- {
- this._x = 1000;
- this._visible = false;
- }
- else
- {
- this._visible = true;
- }
- if(_root.levmoveR)
- {
- this._x -= 3;
- }
- if(_root.levmoveL)
- {
- this._x += 3;
- }
- if(_root.jumpR)
- {
- this._x -= 6;
- }
- if(_root.jumpL)
- {
- this._x += 6;
- }
- if(_root.notarget5)
- {
- this._x -= 6;
- }
- if(this._x < 550)
- {
- _root.b5i._visible = true;
- }
- if(this._x < _root.sheep._x + 80)
- {
- _root.hitarea5 = true;
- _root.notarget5 = false;
- }
- if(this._x > _root.sheep._x + 120)
- {
- _root.hitarea5 = false;
- _root.notarget5 = true;
- }
- if(_root.hitarea5)
- {
- if(_root.hit5)
- {
- _root.hit5 = false;
- _root.bot5life -= _root.levelhit;
- if(_root.stronghit)
- {
- _root.bot5life -= 1;
- }
- if(_root.highkick)
- {
- _root.bot5life -= 100;
- _root.highkick = false;
- gotoAndPlay(34);
- }
- gotoAndPlay(26);
- }
- }
- }
-